home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
otm3d095
/
sin.h
< prev
Wrap
C/C++ Source or Header
|
1994-12-12
|
233b
|
23 lines
#ifndef _SIN_H
#define _SIN_H
#ifndef PI
#define PI 3.14592654
#define SINSHIFT 8
#endif
int zDSin(int deg);
int zRSin(double rad);
int zDCos(int deg);
int zRCos(double rad);
void initSinCos();
#endif